home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / ada / gnat-3.05- / gnat-3 / gnat-3.05-i486-linux-elf-bin / rts / 2otcmasp.adb < prev    next >
Encoding:
Text File  |  1996-06-07  |  4.0 KB  |  89 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --  S Y S T E M . T A S K _ C L O C K . M A C H I N E _ S P E C I F I C S   --
  6. --                                                                          --
  7. --                                  B o d y                                 --
  8. --                              (OS/2 Version)                              --
  9. --                                                                          --
  10. --                             $Revision: 1.2 $                             --
  11. --                                                                          --
  12. --      Copyright (C) 1991,1992,1993,1994,1995 Florida State University     --
  13. --                                                                          --
  14. -- GNARL is free software; you can  redistribute it  and/or modify it under --
  15. -- terms of the  GNU General Public License as published  by the Free Soft- --
  16. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  17. -- sion. GNARL is distributed in the hope that it will be useful, but WITH- --
  18. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  19. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  20. -- for  more details.  You should have  received  a copy of the GNU General --
  21. -- Public License  distributed with GNARL; see file COPYING.  If not, write --
  22. -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
  23. -- MA 02111-1307, USA.                                                      --
  24. --                                                                          --
  25. -- As a special exception,  if other files  instantiate  generics from this --
  26. -- unit, or you link  this unit with other files  to produce an executable, --
  27. -- this  unit  does not  by itself cause  the resulting  executable  to  be --
  28. -- covered  by the  GNU  General  Public  License.  This exception does not --
  29. -- however invalidate  any other reasons why  the executable file  might be --
  30. -- covered by the  GNU Public License.                                      --
  31. --                                                                          --
  32. -- GNARL was developed by the GNARL team at Florida State University. It is --
  33. -- now maintained by Ada Core Technologies Inc. in cooperation with Florida --
  34. -- State University (http://www.gnat.com).                                  --
  35. --                                                                          --
  36.  
  37. --  This is a OS/2 version of this package, that provides microsecond timing
  38. --  using th gettimeofday() function, which is available in the EMX library.
  39.  
  40. with Interfaces.C; use Interfaces.C;
  41.  
  42. package body System.Task_Clock.Machine_Specifics is
  43.  
  44.    -----------
  45.    -- Clock --
  46.    -----------
  47.  
  48.    type Microseconds is new long;
  49.  
  50.    Microseconds_Per_Second : Microseconds := 10#1#E6;
  51.  
  52.    subtype Fractional_Second is Microseconds range
  53.      0 .. Microseconds_Per_Second - 1;
  54.    --  This is dependent on the stdtypes.h header file.
  55.  
  56.    type time_t is new int;
  57.  
  58.    type timespec is record
  59.       tv_sec : time_t;
  60.       tv_usec : Fractional_Second;
  61.    end record;
  62.  
  63.    type timezone is record
  64.       tz_minuteswest : int;   -- of GMT
  65.       tz_dsttime     : int;   -- type of dst correction to apply
  66.    end record;
  67.  
  68.    function gettimeofday
  69.      (tp : access timespec;
  70.       tzp : access timezone)
  71.       return int;
  72.    pragma Import (C, gettimeofday);
  73.  
  74.    function Clock return Stimespec is
  75.       Now    : aliased timespec;
  76.       Result : int;
  77.  
  78.    begin
  79.       Result := gettimeofday (Now'Access, null);
  80.       return
  81.           Stimespec_Sec_Unit * Stimespec (Now.tv_sec) +
  82.           Stimespec (Now.tv_usec) * (Stimespec_Sec_Unit /
  83.             Stimespec (Microseconds_Per_Second));
  84.    end Clock;
  85.  
  86. begin
  87.    Stimespec_Ticks := Time_Of (0, 1_000_000);
  88. end System.Task_Clock.Machine_Specifics;
  89.